-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BCFR-1099 sei custom log index #15858
Conversation
AER Report: CI Core ran successfully ✅AER Report: Operator UI CI ran successfully ✅ |
Quality Gate passedIssues Measures |
if el.Method == "eth_getLogs" { | ||
r.rpcLog.Critical("evmclient.BatchCallContext: eth_getLogs is not supported") | ||
return errors.New("evmclient.BatchCallContext: eth_getLogs is not supported") | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this mean we can't support LogPoller / CCIP on AStar?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, nevermind... I forgot we only use batch requests with eth_getBlockByNumber
. Still, very strange that AStar wouldn't support this! We have thought about changing the eth_getLogs
requests to a batched request, I guess if we do that we'll have to fall back to the older method on AStar 🤔
Patch with minor adjustments from the chainlink repo [PR](smartcontractkit/chainlink#15858). Adjustments were caused by differences between repos. It's easier to do&review them than to apply all the changes made to chainlink repo that included MultiNode abstraction with 5k lines changed.
Patch with minor adjustments from the chainlink repo [PR](smartcontractkit/chainlink#15858). Adjustments were caused by differences between repos. It's easier to do&review them than to apply all the changes made to chainlink repo that included MultiNode abstraction with 5k lines changed.
Cherry picking core PRs into ccip: 1. smartcontractkit/chainlink#15828 2. smartcontractkit/chainlink#15858 3. smartcontractkit/chainlink#15735 --------- Co-authored-by: Jasmin Bakalovic <[email protected]> Co-authored-by: joaoluisam <[email protected]> Co-authored-by: Friedemann Fürst <[email protected]> Co-authored-by: Sishir Giri <[email protected]> Co-authored-by: Dmytro Haidashenko <[email protected]>
Added custom calculation of log's index to match LogPoller's expectations